home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / Graphic Elements 3 / GEQTHack / GELogo.h < prev    next >
Text File  |  1995-06-11  |  631b  |  45 lines

  1. /*
  2.     GELogo.h
  3.     
  4.     Graphic Elements © 1994 floating sign
  5.     
  6.     Copyright 1994 by Al Evans. All rights reserved.
  7.     
  8.     5/31/94
  9.     
  10. */
  11.  
  12. #ifdef applec
  13. #ifndef __cplusplus
  14. #ifndef PRELOAD
  15. #pragma load "::ToolKit.precompile"
  16. #define PRELOAD
  17. #endif
  18. #endif
  19. #endif
  20.  
  21. #ifndef GRAPHELEMENTS
  22. #include "GraphElements.h"
  23. #endif
  24.  
  25. //Logo plane
  26.  
  27. #define logoPlane    400
  28.  
  29. //Logo ID
  30. #define logoID 'LOGO'
  31.  
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35.  
  36. Boolean LoadLogoScene(GEWorldPtr world);
  37.  
  38. //Logo collision proc
  39. pascal void DoLogoHit(GEWorldPtr world, GrafElPtr logo, GEDirection dir, 
  40.                                     CollisionPhase phase, GrafElPtr objHit);
  41.  
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45.